internal/reflectlite.interfaceType.methods (field)

11 uses

	internal/reflectlite (current package)
		type.go#L240: 	methods []imethod // sorted by hash
		type.go#L706: func (t *interfaceType) NumMethod() int { return len(t.methods) }
		type.go#L743: 	if len(t.methods) == 0 {
		type.go#L762: 		for j := 0; j < len(v.methods); j++ {
		type.go#L763: 			tm := &t.methods[i]
		type.go#L765: 			vm := &v.methods[j]
		type.go#L781: 				if i++; i >= len(t.methods) {
		type.go#L796: 		tm := &t.methods[i]
		type.go#L814: 			if i++; i >= len(t.methods) {
		type.go#L908: 		if len(t.methods) == 0 && len(v.methods) == 0 {